home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Oh!X 2000 Spring
/
Oh!X 2000 Spring Special CD-ROM (Japan) (Part 1).7z
/
Oh!X 2000 Spring Special CD-ROM (Japan) (Part 1).bin
/
F2JW
/
ConFrame.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1999-12-31
|
1KB
|
47 lines
// CConFrame.cpp : インプリメンテーション ファイル
//
#include "stdafx.h"
#include "f2jw.h"
#include "ConFrame.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CConFrame
IMPLEMENT_DYNCREATE(CConFrame, CMDIChildWnd)
CConFrame::CConFrame()
{
CFrnApp* pApp = (CFrnApp*)AfxGetApp();
pApp->m_pFrameConsole = this;
}
CConFrame::~CConFrame()
{
CFrnApp* pApp = (CFrnApp*)AfxGetApp();
pApp->m_pFrameConsole = NULL;
}
BEGIN_MESSAGE_MAP(CConFrame, CMDIChildWnd)
//{{AFX_MSG_MAP(CConFrame)
// メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します。
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CConFrame メッセージ ハンドラ
BOOL CConFrame::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: この位置に固有の処理を追加するか、または基本クラスを呼び出してください
cs.style &= ~FWS_ADDTOTITLE;
return CMDIChildWnd::PreCreateWindow(cs);
}